In [33]:
from __future__ import print_function

from keras.models import Sequential, Model
from keras.layers.embeddings import Embedding
from keras.layers import Input, Activation, Dense, Permute, Dropout, add, dot,merge, concatenate
from keras.layers import LSTM
from keras.utils.data_utils import get_file
from keras.preprocessing.sequence import pad_sequences
from functools import reduce
import tarfile
import numpy as np
import re
In [34]:
def tokenize(sent):
    # splitting the sentences based on spaces and tokenizing them
    return [x.strip() for x in re.split('(\W+)?', sent) if x.strip()]
In [35]:
def parse_stories(lines, only_supporting=False):
   
    # Trying to retrive the questions and 
    # ansers to the particular questions
    
    data = []
    story = []
    for line in lines:
        line = line.decode('utf-8').strip()
        nid, line = line.split(' ', 1)
        nid = int(nid)
        if nid == 1:
            story = []
        if '\t' in line:
            q, a, supporting = line.split('\t')
            q = tokenize(q)
            substory = None
            if only_supporting:
                # Only select the related substory
                supporting = map(int, supporting.split())
                substory = [story[i - 1] for i in supporting]
            else:
                # Provide all the substories
                substory = [x for x in story if x]
            data.append((substory, q, a))
            story.append('')
        else:
            sent = tokenize(line)
            story.append(sent)
        
    return data
In [36]:
def get_stories(f, only_supporting=False, max_length=None):
    
    # Discaring the stories longer than the max length defined 
    # and converting the lines in to a single story corresponding 
    # to the questions
    data = parse_stories(f.readlines(), only_supporting=only_supporting)
    flatten = lambda data: reduce(lambda x, y: x + y, data)
    data = [(flatten(story), q, answer) for story, q, answer in data if not max_length or len(flatten(story)) < max_length]
    return data
In [37]:
def vectorize_stories(data, word_idx, story_maxlen, query_maxlen):

    # Mapping the length of stories against story with maximum
    # length and doing necessary padding
    
    X = []
    Xq = []
    Y = []
    for story, query, answer in data:
        x=[word_idx[w] for w in story]
        xq=[word_idx[w] for w in query]
        y=np.zeros(len(word_idx) + 1)
        y[word_idx[answer]]=1
        X.append(x)
        Xq.append(xq)
        Y.append(y)
    return (pad_sequences(X, maxlen=story_maxlen),
            pad_sequences(Xq, maxlen=query_maxlen),
            np.array(Y))
In [38]:
''' Accessing the particula modules of the 
Babi dataset saperated by the modules
'''

try:
    path = get_file('babi-tasks-v1-2.tar.gz', origin='https://s3.amazonaws.com/text-datasets/babi_tasks_1-20_v1-2.tar.gz')
except:
    print('Error downloading dataset, please download it manually:\n'
          '$ wget http://www.thespermwhale.com/jaseweston/babi/tasks_1-20_v1-2.tar.gz\n'
          '$ mv tasks_1-20_v1-2.tar.gz ~/.keras/datasets/babi-tasks-v1-2.tar.gz')
    raise
tar = tarfile.open(path)
In [39]:
challenges = {'qa4_two-arg-relations': 'tasks_1-20_v1-2/en-10k/qa4_two-arg-relations_{}.txt'}
challenge_type = 'qa4_two-arg-relations'
challenge = challenges[challenge_type]

print('Extracting stories for the challenge:', challenge_type)
train_stories = get_stories(tar.extractfile(challenge.format('train')))
test_stories = get_stories(tar.extractfile(challenge.format('test')))
Extracting stories for the challenge: qa4_two-arg-relations
/usr/lib/python3.5/re.py:203: FutureWarning: split() requires a non-empty pattern match.
  return _compile(pattern, flags).split(string, maxsplit)
In [40]:
print(train_stories)
[(['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom')]
In [41]:
print(test_stories)
[(['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'south', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'office'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'hallway'), (['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'garden'), (['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'office'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'south', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bedroom'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'bathroom'), (['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'office'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'hallway'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'office'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'east', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'west', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'hallway'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'south', 'of', 'the', 'kitchen', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bathroom', 'north', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'north', 'of', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'kitchen'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'south', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'kitchen', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'office'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'garden'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'south', 'of', 'the', 'hallway', '?'], 'garden'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'west', 'of', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'bathroom'), (['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'garden', 'north', 'of', '?'], 'office'), (['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'north', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'office'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bathroom', '?'], 'garden'), (['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'north', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'the', 'office', 'east', 'of', '?'], 'hallway'), (['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'garden'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bathroom'), (['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'garden'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'office', '?'], 'kitchen'), (['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'office'), (['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'west', 'of', '?'], 'office'), (['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'garden', '?'], 'bathroom'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'garden'), (['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'east', 'of', '?'], 'garden'), (['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'kitchen', 'south', 'of', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'bathroom'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.'], ['What', 'is', 'east', 'of', 'the', 'hallway', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'garden'), (['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'bedroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'south', 'of', '?'], 'bathroom'), (['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.'], ['What', 'is', 'north', 'of', 'the', 'office', '?'], 'hallway'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'south', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'bedroom', 'west', 'of', '?'], 'office'), (['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'south', 'of', '?'], 'kitchen'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'west', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'hallway', '?'], 'office'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'office', 'west', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'the', 'hallway', 'east', 'of', '?'], 'bedroom'), (['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.'], ['What', 'is', 'the', 'hallway', 'south', 'of', '?'], 'bedroom'), (['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.'], ['What', 'is', 'the', 'garden', 'east', 'of', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'hallway', 'north', 'of', '?'], 'bedroom'), (['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'east', 'of', 'the', 'bedroom', '?'], 'hallway'), (['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.'], ['What', 'is', 'west', 'of', 'the', 'bathroom', '?'], 'hallway'), (['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.'], ['What', 'is', 'north', 'of', 'the', 'garden', '?'], 'kitchen'), (['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'west', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.'], ['What', 'is', 'north', 'of', 'the', 'bedroom', '?'], 'kitchen'), (['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'the', 'kitchen', 'west', 'of', '?'], 'garden')]
In [42]:
vocab = set()
for story, q, answer in train_stories + test_stories:
    print(story)
    vocab |= set(story + q + [answer])
vocab = sorted(vocab)

# Reserve 0 for masking via pad_sequences
vocab_size = len(vocab) + 1
story_maxlen = max(map(len, (x for x, _, _ in train_stories + test_stories)))
query_maxlen = max(map(len, (x for _, x, _ in train_stories + test_stories)))
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'office', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'bathroom', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'kitchen', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'garden', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'office', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'hallway', '.']
['The', 'garden', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'kitchen', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'office', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'office', 'is', 'east', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'kitchen', '.']
['The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'bathroom', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'bedroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'east', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'office', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'bedroom', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'garden', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'south', 'of', 'the', 'bedroom', '.']
['The', 'bathroom', 'is', 'north', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'north', 'of', 'the', 'office', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'bathroom', '.']
['The', 'bedroom', 'is', 'east', 'of', 'the', 'kitchen', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'garden', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'garden', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'office', '.', 'The', 'office', 'is', 'east', 'of', 'the', 'bedroom', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'kitchen', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'bedroom', 'is', 'north', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'west', 'of', 'the', 'garden', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'hallway', '.', 'The', 'hallway', 'is', 'south', 'of', 'the', 'bathroom', '.']
['The', 'hallway', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'west', 'of', 'the', 'bathroom', '.', 'The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.']
['The', 'bedroom', 'is', 'south', 'of', 'the', 'garden', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'garden', '.']
['The', 'garden', 'is', 'east', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'west', 'of', 'the', 'bedroom', '.']
['The', 'hallway', 'is', 'south', 'of', 'the', 'bedroom', '.', 'The', 'kitchen', 'is', 'north', 'of', 'the', 'bedroom', '.']
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
In [54]:
with open('story_maxlen_two-arg-relations.txt','w') as file:
    file.write(str(story_maxlen))
    file.write('\n')
file.close()


with open('query_maxlen_two-arg-relations.txt','w') as file:
    file.write(str(query_maxlen))
    file.write('\n')
file.close()
In [44]:
''' Knowing some facts and stats about the 
module of dataset we are using
'''

print('-')
print('Vocab size:', vocab_size, 'unique words')
print('Story max length:', story_maxlen, 'words')
print('Query max length:', query_maxlen, 'words')
print('Number of training stories:', len(train_stories))
print('Number of test stories:', len(test_stories))
print('-')
print('Here\'s what a "story" tuple looks like (input, query, answer):')
print(train_stories[0])
print('-')
print('Vectorizing the word sequences...')

word_idx = dict((c, i + 1) for i, c in enumerate(vocab))
idx_word = dict((i+1, c) for i,c in enumerate(vocab))
inputs_train, queries_train, answers_train = vectorize_stories(train_stories,
                                                               word_idx,
                                                               story_maxlen,
                                                               query_maxlen)
inputs_test, queries_test, answers_test = vectorize_stories(test_stories,
                                                            word_idx,
                                                            story_maxlen,
                                                            query_maxlen)
-
Vocab size: 18 unique words
Story max length: 16 words
Query max length: 7 words
Number of training stories: 10000
Number of test stories: 1000
-
Here's what a "story" tuple looks like (input, query, answer):
(['The', 'office', 'is', 'north', 'of', 'the', 'kitchen', '.', 'The', 'garden', 'is', 'south', 'of', 'the', 'kitchen', '.'], ['What', 'is', 'north', 'of', 'the', 'kitchen', '?'], 'office')
-
Vectorizing the word sequences...
In [45]:
with open('word_idx_two-arg-relations.txt','w') as file:
    file.write(str(word_idx))
file.close()
In [46]:
with open('idx_word_two-arg-relations.txt','w') as file:
    file.write(str(idx_word))
file.close()
In [47]:
print(word_idx)
{'bedroom': 6, 'kitchen': 11, 'The': 3, 'office': 14, '.': 1, 'garden': 8, 'bathroom': 5, 'hallway': 9, 'What': 4, 'the': 16, 'north': 12, 'west': 17, 'is': 10, 'south': 15, 'of': 13, '?': 2, 'east': 7}
In [48]:
print(idx_word)
{1: '.', 2: '?', 3: 'The', 4: 'What', 5: 'bathroom', 6: 'bedroom', 7: 'east', 8: 'garden', 9: 'hallway', 10: 'is', 11: 'kitchen', 12: 'north', 13: 'of', 14: 'office', 15: 'south', 16: 'the', 17: 'west'}
In [49]:
print('-')
print('inputs: integer tensor of shape (samples, max_length)')
print('inputs_train shape:', inputs_train.shape)
print('inputs_test shape:', inputs_test.shape)
print('-')
print('queries: integer tensor of shape (samples, max_length)')
print('queries_train shape:', queries_train.shape)
print('queries_test shape:', queries_test.shape)
print('-')
print('answers: binary (1 or 0) tensor of shape (samples, vocab_size)')
print('answers_train shape:', answers_train.shape)
print('answers_test shape:', answers_test.shape)
print('-')
print('Compiling...')
-
inputs: integer tensor of shape (samples, max_length)
inputs_train shape: (10000, 16)
inputs_test shape: (1000, 16)
-
queries: integer tensor of shape (samples, max_length)
queries_train shape: (10000, 7)
queries_test shape: (1000, 7)
-
answers: binary (1 or 0) tensor of shape (samples, vocab_size)
answers_train shape: (10000, 18)
answers_test shape: (1000, 18)
-
Compiling...
In [50]:
train_epochs = 120
batch_size = 32
lstm_size = 64
In [51]:
# initiating 
input_sequence = Input((story_maxlen,))
question = Input((query_maxlen,))

print('Input sequence:', input_sequence)
print('Question:', question)

# defining the encoder for the input and embedding the vocab
input_encoder_m = Sequential()
input_encoder_m.add(Embedding(input_dim=vocab_size,
                              output_dim=64))
input_encoder_m.add(Dropout(0.3))

# mapping the dimensions according to the maximum length on input
input_encoder_c = Sequential()
input_encoder_c.add(Embedding(input_dim=vocab_size,
                              output_dim=query_maxlen))
input_encoder_c.add(Dropout(0.3))

# vectorizing the questions
question_encoder = Sequential()
question_encoder.add(Embedding(input_dim=vocab_size,
                               output_dim=64,
                               input_length=query_maxlen))
question_encoder.add(Dropout(0.3))


# conctinating input stories and questions
input_encoded_m = input_encoder_m(input_sequence)
print('Input encoded m', input_encoded_m)
input_encoded_c = input_encoder_c(input_sequence)
print('Input encoded c', input_encoded_c)
question_encoded = question_encoder(question)
print('Question encoded', question_encoded)


# cross refrencing the questions against the stories
match = merge([input_encoded_m, question_encoded], mode='dot', dot_axes=(2, 2))
print(match.shape)
match = Activation('softmax')(match)
print('Match shape', match)

response = merge([match, input_encoded_c], mode='sum')
response = Permute((2, 1))(response)  
print('Response shape', response)

# mapping answers against the vector of question and stories
answer = merge([response, question_encoded], mode='concat')
print('Answer shape', answer)

answer = LSTM(64)(answer)  
answer = Dropout(0.3)(answer)
answer = Dense(vocab_size)(answer)  

# popping out prob. of answers
answer = Activation('softmax')(answer)
Input sequence: Tensor("input_3:0", shape=(?, 16), dtype=float32)
Question: Tensor("input_4:0", shape=(?, 7), dtype=float32)
Input encoded m Tensor("sequential_7/dropout_5/cond/Merge:0", shape=(?, 16, 64), dtype=float32)
Input encoded c Tensor("sequential_8/dropout_6/cond/Merge:0", shape=(?, 16, 7), dtype=float32)
Question encoded Tensor("sequential_9/dropout_7/cond/Merge:0", shape=(?, 7, 64), dtype=float32)
(?, 16, 7)
Match shape Tensor("activation_3/truediv:0", shape=(?, 16, 7), dtype=float32)
Response shape Tensor("permute_2/transpose:0", shape=(?, 7, 16), dtype=float32)
Answer shape Tensor("merge_6/concat:0", shape=(?, 7, 80), dtype=float32)
/usr/local/lib/python3.5/dist-packages/ipykernel_launcher.py:38: UserWarning: The `merge` function is deprecated and will be removed after 08/2017. Use instead layers from `keras.layers.merge`, e.g. `add`, `concatenate`, etc.
/home/ubuntu/src/keras/keras/legacy/layers.py:464: UserWarning: The `Merge` layer is deprecated and will be removed after 08/2017. Use instead layers from `keras.layers.merge`, e.g. `add`, `concatenate`, etc.
  name=name)
/usr/local/lib/python3.5/dist-packages/ipykernel_launcher.py:43: UserWarning: The `merge` function is deprecated and will be removed after 08/2017. Use instead layers from `keras.layers.merge`, e.g. `add`, `concatenate`, etc.
/usr/local/lib/python3.5/dist-packages/ipykernel_launcher.py:48: UserWarning: The `merge` function is deprecated and will be removed after 08/2017. Use instead layers from `keras.layers.merge`, e.g. `add`, `concatenate`, etc.
In [52]:
model = Model([input_sequence, question], answer)
model.compile(optimizer='rmsprop', loss='categorical_crossentropy',
              metrics=['accuracy'])
In [53]:
model.fit([inputs_train, queries_train], answers_train, batch_size, train_epochs,
          validation_data=([inputs_test, queries_test], answers_test))
Train on 10000 samples, validate on 1000 samples
Epoch 1/120
10000/10000 [==============================] - 6s 562us/step - loss: 1.7886 - acc: 0.2248 - val_loss: 1.4129 - val_acc: 0.4090
Epoch 2/120
10000/10000 [==============================] - 5s 507us/step - loss: 1.3021 - acc: 0.4564 - val_loss: 1.1456 - val_acc: 0.4770
Epoch 3/120
10000/10000 [==============================] - 5s 503us/step - loss: 1.1574 - acc: 0.5129 - val_loss: 1.0463 - val_acc: 0.5300
Epoch 4/120
10000/10000 [==============================] - 5s 502us/step - loss: 1.0355 - acc: 0.5608 - val_loss: 0.8579 - val_acc: 0.5760
Epoch 5/120
10000/10000 [==============================] - 5s 502us/step - loss: 0.9152 - acc: 0.6067 - val_loss: 0.7172 - val_acc: 0.6500
Epoch 6/120
10000/10000 [==============================] - 5s 503us/step - loss: 0.8620 - acc: 0.6232 - val_loss: 0.6797 - val_acc: 0.6810
Epoch 7/120
10000/10000 [==============================] - 5s 502us/step - loss: 0.8085 - acc: 0.6566 - val_loss: 0.6317 - val_acc: 0.6910
Epoch 8/120
10000/10000 [==============================] - 5s 501us/step - loss: 0.7510 - acc: 0.6760 - val_loss: 0.5906 - val_acc: 0.7300
Epoch 9/120
10000/10000 [==============================] - 5s 500us/step - loss: 0.7126 - acc: 0.6979 - val_loss: 0.4982 - val_acc: 0.7720
Epoch 10/120
10000/10000 [==============================] - 5s 501us/step - loss: 0.6607 - acc: 0.7164 - val_loss: 0.4962 - val_acc: 0.7400
Epoch 11/120
10000/10000 [==============================] - 5s 501us/step - loss: 0.6157 - acc: 0.7225 - val_loss: 0.4663 - val_acc: 0.7560
Epoch 12/120
10000/10000 [==============================] - 5s 501us/step - loss: 0.5805 - acc: 0.7368 - val_loss: 0.4503 - val_acc: 0.7470
Epoch 13/120
10000/10000 [==============================] - 5s 503us/step - loss: 0.5651 - acc: 0.7426 - val_loss: 0.4093 - val_acc: 0.7640
Epoch 14/120
10000/10000 [==============================] - 5s 507us/step - loss: 0.5464 - acc: 0.7436 - val_loss: 0.4281 - val_acc: 0.7720
Epoch 15/120
10000/10000 [==============================] - 5s 501us/step - loss: 0.5298 - acc: 0.7500 - val_loss: 0.4122 - val_acc: 0.7640
Epoch 16/120
10000/10000 [==============================] - 5s 503us/step - loss: 0.5185 - acc: 0.7497 - val_loss: 0.4207 - val_acc: 0.7600
Epoch 17/120
10000/10000 [==============================] - 5s 502us/step - loss: 0.5029 - acc: 0.7517 - val_loss: 0.3891 - val_acc: 0.7690
Epoch 18/120
10000/10000 [==============================] - 5s 502us/step - loss: 0.4894 - acc: 0.7560 - val_loss: 0.3962 - val_acc: 0.7630
Epoch 19/120
10000/10000 [==============================] - 5s 502us/step - loss: 0.4814 - acc: 0.7592 - val_loss: 0.3937 - val_acc: 0.7760
Epoch 20/120
10000/10000 [==============================] - 5s 501us/step - loss: 0.4692 - acc: 0.7632 - val_loss: 0.3844 - val_acc: 0.7800
Epoch 21/120
10000/10000 [==============================] - 5s 501us/step - loss: 0.4553 - acc: 0.7707 - val_loss: 0.3808 - val_acc: 0.7670
Epoch 22/120
10000/10000 [==============================] - 5s 503us/step - loss: 0.4583 - acc: 0.7671 - val_loss: 0.3887 - val_acc: 0.7700
Epoch 23/120
10000/10000 [==============================] - 5s 503us/step - loss: 0.4460 - acc: 0.7710 - val_loss: 0.3870 - val_acc: 0.7820
Epoch 24/120
10000/10000 [==============================] - 5s 502us/step - loss: 0.4361 - acc: 0.7723 - val_loss: 0.3669 - val_acc: 0.7700
Epoch 25/120
10000/10000 [==============================] - 5s 503us/step - loss: 0.4274 - acc: 0.7780 - val_loss: 0.3618 - val_acc: 0.7740
Epoch 26/120
10000/10000 [==============================] - 5s 502us/step - loss: 0.4268 - acc: 0.7788 - val_loss: 0.3834 - val_acc: 0.7700
Epoch 27/120
10000/10000 [==============================] - 5s 502us/step - loss: 0.4183 - acc: 0.7798 - val_loss: 0.3637 - val_acc: 0.7700
Epoch 28/120
10000/10000 [==============================] - 5s 501us/step - loss: 0.4090 - acc: 0.7876 - val_loss: 0.3707 - val_acc: 0.7790
Epoch 29/120
10000/10000 [==============================] - 5s 501us/step - loss: 0.4154 - acc: 0.7739 - val_loss: 0.3646 - val_acc: 0.7700
Epoch 30/120
10000/10000 [==============================] - 5s 503us/step - loss: 0.3983 - acc: 0.7840 - val_loss: 0.3582 - val_acc: 0.7680
Epoch 31/120
10000/10000 [==============================] - 5s 502us/step - loss: 0.3998 - acc: 0.7858 - val_loss: 0.3593 - val_acc: 0.7800
Epoch 32/120
10000/10000 [==============================] - 5s 501us/step - loss: 0.3968 - acc: 0.7831 - val_loss: 0.3620 - val_acc: 0.7780
Epoch 33/120
10000/10000 [==============================] - 5s 505us/step - loss: 0.3881 - acc: 0.7852 - val_loss: 0.3505 - val_acc: 0.7810
Epoch 34/120
10000/10000 [==============================] - 5s 503us/step - loss: 0.3907 - acc: 0.7879 - val_loss: 0.3593 - val_acc: 0.7690
Epoch 35/120
10000/10000 [==============================] - 5s 504us/step - loss: 0.3871 - acc: 0.7854 - val_loss: 0.3601 - val_acc: 0.7720
Epoch 36/120
10000/10000 [==============================] - 5s 501us/step - loss: 0.3846 - acc: 0.7880 - val_loss: 0.3627 - val_acc: 0.7670
Epoch 37/120
10000/10000 [==============================] - 5s 502us/step - loss: 0.3781 - acc: 0.7926 - val_loss: 0.3574 - val_acc: 0.7840
Epoch 38/120
10000/10000 [==============================] - 5s 501us/step - loss: 0.3759 - acc: 0.7883 - val_loss: 0.3376 - val_acc: 0.7860
Epoch 39/120
10000/10000 [==============================] - 5s 502us/step - loss: 0.3714 - acc: 0.7939 - val_loss: 0.3413 - val_acc: 0.7700
Epoch 40/120
10000/10000 [==============================] - 5s 501us/step - loss: 0.3677 - acc: 0.7958 - val_loss: 0.3379 - val_acc: 0.7780
Epoch 41/120
10000/10000 [==============================] - 5s 503us/step - loss: 0.3700 - acc: 0.7881 - val_loss: 0.3399 - val_acc: 0.7600
Epoch 42/120
10000/10000 [==============================] - 5s 503us/step - loss: 0.3619 - acc: 0.7962 - val_loss: 0.3406 - val_acc: 0.7750
Epoch 43/120
10000/10000 [==============================] - 5s 501us/step - loss: 0.3614 - acc: 0.7943 - val_loss: 0.3457 - val_acc: 0.7700
Epoch 44/120
10000/10000 [==============================] - 5s 503us/step - loss: 0.3643 - acc: 0.7945 - val_loss: 0.3389 - val_acc: 0.7780
Epoch 45/120
10000/10000 [==============================] - 5s 502us/step - loss: 0.3555 - acc: 0.7985 - val_loss: 0.3385 - val_acc: 0.7820
Epoch 46/120
10000/10000 [==============================] - 5s 506us/step - loss: 0.3546 - acc: 0.7966 - val_loss: 0.3312 - val_acc: 0.7900
Epoch 47/120
10000/10000 [==============================] - 5s 502us/step - loss: 0.3492 - acc: 0.8017 - val_loss: 0.3460 - val_acc: 0.7740
Epoch 48/120
10000/10000 [==============================] - 5s 502us/step - loss: 0.3475 - acc: 0.8025 - val_loss: 0.3370 - val_acc: 0.7710
Epoch 49/120
10000/10000 [==============================] - 5s 503us/step - loss: 0.3497 - acc: 0.7996 - val_loss: 0.3358 - val_acc: 0.7780
Epoch 50/120
10000/10000 [==============================] - 5s 502us/step - loss: 0.3492 - acc: 0.7959 - val_loss: 0.3358 - val_acc: 0.7830
Epoch 51/120
10000/10000 [==============================] - 5s 502us/step - loss: 0.3500 - acc: 0.8017 - val_loss: 0.3287 - val_acc: 0.7940
Epoch 52/120
10000/10000 [==============================] - 5s 505us/step - loss: 0.3475 - acc: 0.7950 - val_loss: 0.3387 - val_acc: 0.7700
Epoch 53/120
10000/10000 [==============================] - 5s 504us/step - loss: 0.3438 - acc: 0.7965 - val_loss: 0.3285 - val_acc: 0.7770
Epoch 54/120
10000/10000 [==============================] - 5s 501us/step - loss: 0.3399 - acc: 0.7990 - val_loss: 0.3332 - val_acc: 0.7820
Epoch 55/120
10000/10000 [==============================] - 5s 502us/step - loss: 0.3403 - acc: 0.7968 - val_loss: 0.3374 - val_acc: 0.7670
Epoch 56/120
10000/10000 [==============================] - 5s 501us/step - loss: 0.3387 - acc: 0.8055 - val_loss: 0.3305 - val_acc: 0.7880
Epoch 57/120
10000/10000 [==============================] - 5s 503us/step - loss: 0.3375 - acc: 0.8061 - val_loss: 0.3277 - val_acc: 0.7730
Epoch 58/120
10000/10000 [==============================] - 5s 506us/step - loss: 0.3325 - acc: 0.8101 - val_loss: 0.3204 - val_acc: 0.7960
Epoch 59/120
10000/10000 [==============================] - 5s 504us/step - loss: 0.3292 - acc: 0.8113 - val_loss: 0.3252 - val_acc: 0.7880
Epoch 60/120
10000/10000 [==============================] - 5s 503us/step - loss: 0.3279 - acc: 0.8162 - val_loss: 0.3139 - val_acc: 0.8060
Epoch 61/120
10000/10000 [==============================] - 5s 502us/step - loss: 0.3204 - acc: 0.8284 - val_loss: 0.3028 - val_acc: 0.8080
Epoch 62/120
10000/10000 [==============================] - 5s 502us/step - loss: 0.3007 - acc: 0.8417 - val_loss: 0.2648 - val_acc: 0.8470
Epoch 63/120
10000/10000 [==============================] - 5s 504us/step - loss: 0.2726 - acc: 0.8668 - val_loss: 0.2128 - val_acc: 0.8990
Epoch 64/120
10000/10000 [==============================] - 5s 503us/step - loss: 0.2269 - acc: 0.8980 - val_loss: 0.1453 - val_acc: 0.9480
Epoch 65/120
10000/10000 [==============================] - 5s 502us/step - loss: 0.1801 - acc: 0.9303 - val_loss: 0.0836 - val_acc: 0.9750
Epoch 66/120
10000/10000 [==============================] - 5s 502us/step - loss: 0.1365 - acc: 0.9487 - val_loss: 0.0535 - val_acc: 0.9860
Epoch 67/120
10000/10000 [==============================] - 5s 503us/step - loss: 0.1032 - acc: 0.9610 - val_loss: 0.0337 - val_acc: 0.9930
Epoch 68/120
10000/10000 [==============================] - 5s 501us/step - loss: 0.0905 - acc: 0.9689 - val_loss: 0.0221 - val_acc: 0.9980
Epoch 69/120
10000/10000 [==============================] - 5s 503us/step - loss: 0.0698 - acc: 0.9773 - val_loss: 0.0130 - val_acc: 0.9990
Epoch 70/120
10000/10000 [==============================] - 5s 502us/step - loss: 0.0631 - acc: 0.9801 - val_loss: 0.0083 - val_acc: 1.0000
Epoch 71/120
10000/10000 [==============================] - 5s 501us/step - loss: 0.0626 - acc: 0.9811 - val_loss: 0.0080 - val_acc: 0.9980
Epoch 72/120
10000/10000 [==============================] - 5s 501us/step - loss: 0.0489 - acc: 0.9854 - val_loss: 0.0040 - val_acc: 1.0000
Epoch 73/120
10000/10000 [==============================] - 5s 502us/step - loss: 0.0417 - acc: 0.9869 - val_loss: 0.0028 - val_acc: 1.0000
Epoch 74/120
10000/10000 [==============================] - 5s 502us/step - loss: 0.0334 - acc: 0.9896 - val_loss: 0.0022 - val_acc: 1.0000
Epoch 75/120
10000/10000 [==============================] - 5s 503us/step - loss: 0.0292 - acc: 0.9909 - val_loss: 0.0014 - val_acc: 1.0000
Epoch 76/120
10000/10000 [==============================] - 5s 504us/step - loss: 0.0299 - acc: 0.9904 - val_loss: 9.9859e-04 - val_acc: 1.0000
Epoch 77/120
10000/10000 [==============================] - 5s 503us/step - loss: 0.0317 - acc: 0.9899 - val_loss: 8.3264e-04 - val_acc: 1.0000
Epoch 78/120
10000/10000 [==============================] - 5s 507us/step - loss: 0.0272 - acc: 0.9925 - val_loss: 6.1968e-04 - val_acc: 1.0000
Epoch 79/120
10000/10000 [==============================] - 5s 501us/step - loss: 0.0203 - acc: 0.9939 - val_loss: 4.8570e-04 - val_acc: 1.0000
Epoch 80/120
10000/10000 [==============================] - 5s 502us/step - loss: 0.0160 - acc: 0.9951 - val_loss: 4.5286e-04 - val_acc: 1.0000
Epoch 81/120
10000/10000 [==============================] - 5s 503us/step - loss: 0.0293 - acc: 0.9916 - val_loss: 4.0842e-04 - val_acc: 1.0000
Epoch 82/120
10000/10000 [==============================] - 5s 501us/step - loss: 0.0238 - acc: 0.9923 - val_loss: 3.1025e-04 - val_acc: 1.0000
Epoch 83/120
10000/10000 [==============================] - 5s 502us/step - loss: 0.0176 - acc: 0.9949 - val_loss: 3.9679e-04 - val_acc: 1.0000
Epoch 84/120
10000/10000 [==============================] - 5s 503us/step - loss: 0.0175 - acc: 0.9948 - val_loss: 2.0926e-04 - val_acc: 1.0000
Epoch 85/120
10000/10000 [==============================] - 5s 504us/step - loss: 0.0166 - acc: 0.9953 - val_loss: 3.5016e-04 - val_acc: 1.0000
Epoch 86/120
10000/10000 [==============================] - 5s 502us/step - loss: 0.0178 - acc: 0.9940 - val_loss: 1.7949e-04 - val_acc: 1.0000
Epoch 87/120
10000/10000 [==============================] - 5s 503us/step - loss: 0.0171 - acc: 0.9942 - val_loss: 1.2708e-04 - val_acc: 1.0000
Epoch 88/120
10000/10000 [==============================] - 5s 505us/step - loss: 0.0159 - acc: 0.9951 - val_loss: 8.0936e-05 - val_acc: 1.0000
Epoch 89/120
10000/10000 [==============================] - 5s 503us/step - loss: 0.0152 - acc: 0.9950 - val_loss: 8.2772e-05 - val_acc: 1.0000
Epoch 90/120
10000/10000 [==============================] - 5s 503us/step - loss: 0.0154 - acc: 0.9956 - val_loss: 9.5970e-05 - val_acc: 1.0000
Epoch 91/120
10000/10000 [==============================] - 5s 503us/step - loss: 0.0158 - acc: 0.9956 - val_loss: 6.7428e-05 - val_acc: 1.0000
Epoch 92/120
10000/10000 [==============================] - 5s 501us/step - loss: 0.0116 - acc: 0.9967 - val_loss: 4.4498e-05 - val_acc: 1.0000
Epoch 93/120
10000/10000 [==============================] - 5s 501us/step - loss: 0.0124 - acc: 0.9969 - val_loss: 7.2856e-05 - val_acc: 1.0000
Epoch 94/120
10000/10000 [==============================] - 5s 502us/step - loss: 0.0107 - acc: 0.9974 - val_loss: 4.2931e-05 - val_acc: 1.0000
Epoch 95/120
10000/10000 [==============================] - 5s 501us/step - loss: 0.0088 - acc: 0.9976 - val_loss: 3.0110e-05 - val_acc: 1.0000
Epoch 96/120
10000/10000 [==============================] - 5s 503us/step - loss: 0.0113 - acc: 0.9964 - val_loss: 4.1733e-05 - val_acc: 1.0000
Epoch 97/120
10000/10000 [==============================] - 5s 502us/step - loss: 0.0127 - acc: 0.9967 - val_loss: 4.0029e-05 - val_acc: 1.0000
Epoch 98/120
10000/10000 [==============================] - 5s 503us/step - loss: 0.0101 - acc: 0.9973 - val_loss: 2.5762e-05 - val_acc: 1.0000
Epoch 99/120
10000/10000 [==============================] - 5s 501us/step - loss: 0.0095 - acc: 0.9971 - val_loss: 2.0321e-05 - val_acc: 1.0000
Epoch 100/120
10000/10000 [==============================] - 5s 502us/step - loss: 0.0116 - acc: 0.9968 - val_loss: 1.3202e-05 - val_acc: 1.0000
Epoch 101/120
10000/10000 [==============================] - 5s 502us/step - loss: 0.0153 - acc: 0.9967 - val_loss: 1.3407e-05 - val_acc: 1.0000
Epoch 102/120
10000/10000 [==============================] - 5s 501us/step - loss: 0.0099 - acc: 0.9975 - val_loss: 1.8356e-05 - val_acc: 1.0000
Epoch 103/120
10000/10000 [==============================] - 5s 501us/step - loss: 0.0125 - acc: 0.9969 - val_loss: 0.0011 - val_acc: 0.9990
Epoch 104/120
10000/10000 [==============================] - 5s 502us/step - loss: 0.0058 - acc: 0.9983 - val_loss: 1.0098e-05 - val_acc: 1.0000
Epoch 105/120
10000/10000 [==============================] - 5s 501us/step - loss: 0.0109 - acc: 0.9968 - val_loss: 1.6259e-05 - val_acc: 1.0000
Epoch 106/120
10000/10000 [==============================] - 5s 502us/step - loss: 0.0095 - acc: 0.9971 - val_loss: 9.3420e-06 - val_acc: 1.0000
Epoch 107/120
10000/10000 [==============================] - 5s 502us/step - loss: 0.0114 - acc: 0.9979 - val_loss: 2.6184e-05 - val_acc: 1.0000
Epoch 108/120
10000/10000 [==============================] - 5s 502us/step - loss: 0.0095 - acc: 0.9980 - val_loss: 7.1478e-06 - val_acc: 1.0000
Epoch 109/120
10000/10000 [==============================] - 5s 502us/step - loss: 0.0059 - acc: 0.9984 - val_loss: 4.3217e-06 - val_acc: 1.0000
Epoch 110/120
10000/10000 [==============================] - 5s 507us/step - loss: 0.0062 - acc: 0.9980 - val_loss: 3.6137e-06 - val_acc: 1.0000
Epoch 111/120
10000/10000 [==============================] - 5s 501us/step - loss: 0.0081 - acc: 0.9975 - val_loss: 8.6109e-05 - val_acc: 1.0000
Epoch 112/120
10000/10000 [==============================] - 5s 503us/step - loss: 0.0057 - acc: 0.9982 - val_loss: 3.9386e-06 - val_acc: 1.0000
Epoch 113/120
10000/10000 [==============================] - 5s 501us/step - loss: 0.0107 - acc: 0.9973 - val_loss: 5.3109e-06 - val_acc: 1.0000
Epoch 114/120
10000/10000 [==============================] - 5s 503us/step - loss: 0.0077 - acc: 0.9977 - val_loss: 9.9852e-06 - val_acc: 1.0000
Epoch 115/120
10000/10000 [==============================] - 5s 503us/step - loss: 0.0069 - acc: 0.9980 - val_loss: 2.7611e-06 - val_acc: 1.0000
Epoch 116/120
10000/10000 [==============================] - 5s 502us/step - loss: 0.0110 - acc: 0.9966 - val_loss: 3.5599e-06 - val_acc: 1.0000
Epoch 117/120
10000/10000 [==============================] - 5s 501us/step - loss: 0.0089 - acc: 0.9978 - val_loss: 3.7161e-06 - val_acc: 1.0000
Epoch 118/120
10000/10000 [==============================] - 5s 503us/step - loss: 0.0088 - acc: 0.9981 - val_loss: 1.8795e-06 - val_acc: 1.0000
Epoch 119/120
10000/10000 [==============================] - 5s 503us/step - loss: 0.0081 - acc: 0.9982 - val_loss: 5.1065e-06 - val_acc: 1.0000
Epoch 120/120
10000/10000 [==============================] - 5s 503us/step - loss: 0.0050 - acc: 0.9988 - val_loss: 2.2165e-06 - val_acc: 1.0000
Out[53]:
<keras.callbacks.History at 0x7fee3b4e6b70>
In [55]:
''' Getting the feel for the test dataset
and how it is devided.
'''
Out[55]:
' Getting the feel for the test dataset\nand how it is devided.\n'
In [56]:
for i in range(0,10):
        current_inp = test_stories[i]
        current_story, current_query, current_answer = vectorize_stories([current_inp], word_idx, story_maxlen, query_maxlen)
        current_prediction = model.predict([current_story, current_query])
        current_prediction = idx_word[np.argmax(current_prediction)]
        print(' '.join(current_inp[0]), ' '.join(current_inp[1]), '| Prediction:', current_prediction, '| Ground Truth:', current_inp[2])
        print("-----------------------------------------------------------------------------------------")
        
The hallway is east of the bathroom . The bedroom is west of the bathroom . What is the bathroom east of ? | Prediction: bedroom | Ground Truth: bedroom
-----------------------------------------------------------------------------------------
The bedroom is west of the kitchen . The hallway is west of the bedroom . What is west of the kitchen ? | Prediction: bedroom | Ground Truth: bedroom
-----------------------------------------------------------------------------------------
The bathroom is north of the garden . The hallway is north of the bathroom . What is north of the garden ? | Prediction: bathroom | Ground Truth: bathroom
-----------------------------------------------------------------------------------------
The kitchen is south of the bathroom . The bedroom is south of the kitchen . What is south of the kitchen ? | Prediction: bedroom | Ground Truth: bedroom
-----------------------------------------------------------------------------------------
The bedroom is east of the kitchen . The office is east of the bedroom . What is east of the kitchen ? | Prediction: bedroom | Ground Truth: bedroom
-----------------------------------------------------------------------------------------
The garden is east of the bathroom . The garden is west of the hallway . What is the bathroom west of ? | Prediction: garden | Ground Truth: garden
-----------------------------------------------------------------------------------------
The kitchen is east of the bedroom . The garden is west of the bedroom . What is east of the bedroom ? | Prediction: kitchen | Ground Truth: kitchen
-----------------------------------------------------------------------------------------
The garden is north of the bedroom . The bathroom is north of the garden . What is the garden south of ? | Prediction: bathroom | Ground Truth: bathroom
-----------------------------------------------------------------------------------------
The kitchen is south of the office . The garden is south of the kitchen . What is south of the office ? | Prediction: kitchen | Ground Truth: kitchen
-----------------------------------------------------------------------------------------
The office is east of the hallway . The hallway is east of the garden . What is east of the hallway ? | Prediction: office | Ground Truth: office
-----------------------------------------------------------------------------------------
In [57]:
print(story)
['The', 'garden', 'is', 'west', 'of', 'the', 'hallway', '.', 'The', 'garden', 'is', 'east', 'of', 'the', 'kitchen', '.']
In [58]:
from keras.models import model_from_json
model_json = model.to_json()
with open("model_two-arg-relations.json", "w") as json_file:
    json_file.write(model_json)
# serialize weights to HDF5
model.save_weights("model_two-arg-relations.h5")
print("Saved model to disk")
Saved model to disk
In [59]:
json_file = open('model_two-arg-relations.json', 'r')
loaded_model_json = json_file.read()
json_file.close()
loaded_model = model_from_json(loaded_model_json)
# load weights into new model
loaded_model.load_weights("model_two-arg-relations.h5")
/home/ubuntu/src/keras/keras/engine/topology.py:1269: UserWarning: The `Merge` layer is deprecated and will be removed after 08/2017. Use instead layers from `keras.layers.merge`, e.g. `add`, `concatenate`, etc.
  return cls(**config)
In [60]:
test_stories[0]
Out[60]:
(['The',
  'hallway',
  'is',
  'east',
  'of',
  'the',
  'bathroom',
  '.',
  'The',
  'bedroom',
  'is',
  'west',
  'of',
  'the',
  'bathroom',
  '.'],
 ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'],
 'bedroom')
In [61]:
loaded_model.compile(optimizer='rmsprop', loss='categorical_crossentropy',
              metrics=['accuracy'])
for i in range(0,10):
        current_inp = test_stories[i]
        current_story, current_query, current_answer = vectorize_stories([current_inp], word_idx, story_maxlen, query_maxlen)
        current_prediction = loaded_model.predict([current_story, current_query])
        current_prediction = idx_word[np.argmax(current_prediction)]
        print(' '.join(current_inp[0]), ' '.join(current_inp[1]), '| Prediction:', current_prediction, '| Ground Truth:', current_inp[2])
        print("-----------------------------------------------------------------------------------------")
The hallway is east of the bathroom . The bedroom is west of the bathroom . What is the bathroom east of ? | Prediction: bedroom | Ground Truth: bedroom
-----------------------------------------------------------------------------------------
The bedroom is west of the kitchen . The hallway is west of the bedroom . What is west of the kitchen ? | Prediction: bedroom | Ground Truth: bedroom
-----------------------------------------------------------------------------------------
The bathroom is north of the garden . The hallway is north of the bathroom . What is north of the garden ? | Prediction: bathroom | Ground Truth: bathroom
-----------------------------------------------------------------------------------------
The kitchen is south of the bathroom . The bedroom is south of the kitchen . What is south of the kitchen ? | Prediction: bedroom | Ground Truth: bedroom
-----------------------------------------------------------------------------------------
The bedroom is east of the kitchen . The office is east of the bedroom . What is east of the kitchen ? | Prediction: bedroom | Ground Truth: bedroom
-----------------------------------------------------------------------------------------
The garden is east of the bathroom . The garden is west of the hallway . What is the bathroom west of ? | Prediction: garden | Ground Truth: garden
-----------------------------------------------------------------------------------------
The kitchen is east of the bedroom . The garden is west of the bedroom . What is east of the bedroom ? | Prediction: kitchen | Ground Truth: kitchen
-----------------------------------------------------------------------------------------
The garden is north of the bedroom . The bathroom is north of the garden . What is the garden south of ? | Prediction: bathroom | Ground Truth: bathroom
-----------------------------------------------------------------------------------------
The kitchen is south of the office . The garden is south of the kitchen . What is south of the office ? | Prediction: kitchen | Ground Truth: kitchen
-----------------------------------------------------------------------------------------
The office is east of the hallway . The hallway is east of the garden . What is east of the hallway ? | Prediction: office | Ground Truth: office
-----------------------------------------------------------------------------------------
In [62]:
print(current_story)
[[ 3 14 10  7 13 16  9  1  3  9 10  7 13 16  8  1]]
In [63]:
print(current_query)
[[ 4 10  7 13 16  9  2]]
In [64]:
print(len(current_query))
1
In [65]:
print(test_stories[0])
(['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom')